home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / mxlibs / sblib / status.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-22  |  286 b   |  18 lines

  1. #ifndef STATUS_H
  2. #define STATUS_H
  3.  
  4. /* Etat possible de la carte.
  5.    -------------------------- */
  6. enum CARD_STATUS
  7. {
  8.    sta_IDLE,
  9.    sta_OUTPUT_BUFFER,
  10.    sta_OUTPUT_RAW_FILE,
  11.    sta_OUTPUT_WAVE_FILE,
  12.    sta_OUTPUT_VOC_FILE
  13. };
  14.  
  15. #define sta_NOT_DEFINED      100
  16.  
  17.  
  18. #endif